home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / emacs.lha / emacs-19.16 / etc / NEWS < prev    next >
Text File  |  1993-07-06  |  71KB  |  1,688 lines

  1. GNU Emacs NEWS -- history of user-visible changes.  18 Jun 1993
  2. Copyright (C) 1993 Free Software Foundation, Inc.
  3. See the end for copying conditions.
  4.  
  5. Please send Emacs bug reports to bug-gnu-emacs@prep.ai.mit.edu.
  6. For older news, see the file ONEWS.  For Lisp changes in Emacs 19,
  7. see the file LNEWS.
  8.  
  9. Changes in version 19.16.
  10.  
  11. * When dragging the mouse to select a region, Emacs now highlights the
  12. region as you drag.  If you continue the drag beyond the boundaries of
  13. the window, Emacs scrolls its text until you return the mouse to the
  14. window, or release the button.
  15.  
  16. * RET now exits `query-replace' and `query-replace-regexp'; this makes it
  17. more consistent with the incremental search facility, which uses RET
  18. to end the search.
  19.  
  20. * In C mode, C-c C-u now runs c-up-conditional.
  21. C-c C-n and C-c C-p now run new commands that move forward
  22. and back over balanced sets of C conditionals (c-forward-conditional
  23. and c-backward-conditional).
  24.  
  25. * The Edit entry in the menu bar has a new alternative:
  26. "Choose Next Paste".  It gives you a menu showing the various
  27. strings in the kill ring; click on one to select it as the text 
  28. to be yanked ("pasted") the next time you yank.
  29.  
  30. * If you enable Transient Mark mode and set mark-even-if-inactive to
  31. non-nil, then the region is highlighted in a transient fashion just as
  32. normally in Transient Mark mode, but the mark really remains active
  33. all the time; commands that use the region can be used even if the
  34. region highlighting turns off.
  35.  
  36. * If you type C-h after a prefix key, it displays the bindings
  37. that start with that prefix.
  38.  
  39. * The VC package now searches for version control commands in the
  40. directories named by the variable `vc-path'; its value should be a
  41. list of strings.
  42.  
  43. * VC now displays in the mode line the head version number of the file
  44. you are visiting.  This follows the string `RCS' or `SCCS'.
  45. If that version is locked, the name of the person who has locked it
  46. appears before the version number, with a colon between them.
  47. If other versions are locked, name/version pairs for those versions
  48. follow the head version number.
  49.  
  50. * When using X, if you load the `paren' library, Emacs automatically
  51. underlines or highlights the matching paren whenever point is
  52. next to the outside of a paren.  When point is before an open-paren,
  53. this shows the matching close; when point is after a close-paren,
  54. this shows the matching open.
  55.  
  56. * The new function `define-key-after' is like `define-key',
  57. but takes an extra argument AFTER.  It places the newly defined
  58. binding after the binding for the event AFTER.
  59.  
  60. * `accessible-keymaps' now takes an optional second argument, PREFIX.
  61. If PREFIX is non-nil, it means the value should include only maps for
  62. keys that start with PREFIX.
  63.  
  64. `describe-bindings' also accepts an optional argument PREFIX which
  65. means to describe only the keys that start with PREFIX.
  66.  
  67. * The variable `prefix-help-command' hold a command to run to display help
  68. whenever the character `help-char' follows a prefix key and does not have
  69. a key binding in that context.
  70.  
  71. * Emacs now detects double- and triple-mouse clicks.  A single mouse
  72. click produces a pair events of the form:
  73.     (down-mouse-N POSITION)
  74.     (mouse-N POSITION)
  75. Clicking the same mouse button again, soon thereafter and at the same
  76. location, produces another pair of events of the form:
  77.     (down-mouse-N POSITION)
  78.     (double-mouse-N POSITION 2)
  79. Another click will produce an event pair of the form:
  80.     (down-mouse-N POSITION)
  81.     (triple-mouse-N POSITION 3)
  82. All the POSITIONs in such a sequence would be identical, except for
  83. their timestamps.
  84.  
  85. To count as double- and triple-clicks, mouse clicks must be at the
  86. same location as the first click, and the number of milliseconds
  87. between the first release and the second must be less than the value
  88. of the lisp variable `double-click-time'.  Setting `double-click-time'
  89. to nil disables multi-click detection.  Setting it to t removes the
  90. time limit; Emacs then detects multi-clicks by position only.
  91.  
  92. If `read-key-sequence' finds no binding for a double-click event, but
  93. the corresponding single-click event would be bound,
  94. `read-key-sequence' demotes it to a single-click.  Similarly, it
  95. demotes unbound triple-clicks to double- or single-clicks.  This means
  96. you don't have to distinguish between single- and multi-clicks if you
  97. don't want to.
  98.  
  99. Emacs reports all clicks after the third as `triple-mouse-N' clicks,
  100. but increments the click count after POSITION.  For example, a fourth
  101. click, soon after the third and at the same location, produces a pair
  102. of events of the form:
  103.     (down-mouse-N POSITION)
  104.     (triple-mouse-N POSITION 4)
  105.  
  106. * The way Emacs reports positions of mouse events has changed
  107. slightly.  If a mouse event includes a position list of the form:
  108.     (WINDOW (PLACE-SYMBOL) (COLUMN . ROW) TIMESTAMP)
  109. this denotes exactly the same position as the list:
  110.     (WINDOW  PLACE-SYMBOL  (COLUMN . ROW) TIMESTAMP)
  111. That is, the event occurred over a non-textual area of the frame,
  112. specified by PLACE-SYMBOL, a symbol like `mode-line' or
  113. `vertical-scroll-bar'.
  114.  
  115. Enclosing PLACE-SYMBOL in a singleton list does not change the
  116. position denoted, but the `read-key-sequence' function uses the
  117. presence or absence of the singleton list to tell whether or not it
  118. should prefix the event with its place symbol.
  119.  
  120. Normally, `read-key-sequence' prefixes mouse events occuring over
  121. non-textual areas with their PLACE-SYMBOLs, to select the sub-keymap
  122. appropriate for the event; for example, clicking on the mode line
  123. produces a sequence like
  124.     [mode-line (mouse-1 POSN)]
  125. However, if lisp code elects to unread the resulting key sequence by
  126. placing it in the `unread-command-events' variable, it is important
  127. that `read-key-sequence' not insert the prefix symbol again; that
  128. would produce a malformed key sequence like
  129.     [mode-line mode-line (mouse-1 POSN)]
  130. For this reason, `read-key-sequence' encloses the event's PLACE-SYMBOL
  131. in a singleton list when it first inserts the prefix, but doesn't
  132. insert the prefix when processing events whose PLACE-SYMBOLs are
  133. already thus enclosed.
  134.  
  135.  
  136. Changes in version 19.15.
  137.  
  138. * `make-frame-visible', which uniconified frames, is now a command,
  139. and thus may be bound to a key.  This makes sense because frames
  140. respond to user input while iconified.
  141.  
  142. * You can now use Meta mouse clicks to set and use the "secondary
  143. selection".  You can drag M-Mouse-1 across the region you want to
  144. select.  Or you can press M-Mouse-1 at one end and M-Mouse-3 at the
  145. other (this also copies the text to the kill ring).  Repeating M-Mouse-3
  146. again at the same place kills that text.
  147.  
  148. M-Mouse-2 kills the secondary selection.
  149.  
  150. Setting the secondary selection does not move point or the mark.  It
  151. is possible to make a secondary selection that does not all fit on the
  152. screen, by using M-Mouse-1 at one end, scrolling, then using M-Mouse-3
  153. at the other end.
  154.  
  155. Emacs has only one secondary selection at any time.  Starting to set
  156. a new one cancels any previous one.  The secondary selection displays
  157. using a face named `secondary-selection'.
  158.  
  159. * There's a new way to request use of Supercite (sc.el).  Do this:
  160.  
  161.     (add-hook 'mail-citation-hook 'sc-cite-original)
  162.  
  163. Currently this works with Rmail.  In the future, other Emacs based
  164. mail-readers should be modified to understand this hook also.
  165. In the mean time, you should keep doing what you have done in the past
  166. for those other mail readers.
  167.  
  168. * When a regular expression contains `\(...\)' inside a repetition
  169. operator such as `*' or `+', and you ask about the range that was matched
  170. using `match-beginning' and `match-end', the range you get corresponds
  171. to the *last* repetition *only*.  In Emacs 18, you would get a range
  172. corresponding to all the repetitions.
  173.  
  174. If you want to get a range corresponding to all the repetitions,
  175. put a `\(...\)' grouping *outside* the repetition operator.  This
  176. is the syntax that corresponds logically to the desired result, and
  177. it works the same in Emacs 18 and Emacs 19.
  178.  
  179. (This change actually took place earlier, but we didn't know about it
  180. and thus didn't document it.)
  181.  
  182. Changes in version 19.14.
  183.  
  184. * To modify read-only text, bind the variable `inhibit-read-only'
  185. to a non-nil value.  If the value is t, then all reasons that might
  186. make text read-only are inhibited (including `read-only' text properties).
  187. If the value is a list, then a `read-only' property is inhibited
  188. if it is `memq' in the list.
  189.  
  190. * If you call `get-buffer-window' passing t as its second argument, it
  191. will only search for windows on visible frames.  Previously, passing t
  192. as the secord argument caused `get-buffer-window' to search all
  193. frames, visible or not.
  194.  
  195. * If you call `other-buffer' with a nil or omitted second argument, it
  196. will ignore buffers displayed windows on any visible frame, not just
  197. the selected frame.
  198.  
  199. * You can specify a window or a frame for C-x # to use when
  200. selects a server buffer.  Set the variable server-window
  201. to the window or frame that you want.
  202.  
  203. * The command M-( now inserts spaces outside the open-parentheses in
  204. some cases--depending on the syntax classes of the surrounding
  205. characters.  If the variable `parens-dont-require-spaces' is non-nil,
  206. it inhibits insertion of these spaces.
  207.  
  208. * The GUD package now supports the debugger known as xdb on HP/UX
  209. systems.  Use M-x xdb.  The variable `gud-xdb-directories' lets you
  210. specify a list of directories to search for source code.
  211.  
  212. * If you are using the mailabbrev package, you should note that its
  213. function for defining an alias is now called `define-mail-abbrev'.
  214. This package no longer contains a definition for `define-mail-alias';
  215. that name is used only in mailaliases.
  216.  
  217. * Inserted characters now inherit the properties of the text before
  218. them, by default, rather than those of the following text.
  219.  
  220. * The function `insert-file-contents' now takes optional arguments BEG
  221. and END that specify which part of the file to insert.  BEG defaults to
  222. 0 (the beginning of the file), and END defaults to the end of the file.
  223.  
  224. If you specify BEG or END, then the argument VISIT must be nil.
  225.  
  226. Changes in version 19.13.
  227.  
  228. * Magic file names can now handle the `load' operation.
  229.  
  230. * Bibtex mode now sets up special entries in the menu bar.
  231.  
  232. * The incremental search commands C-w and C-y, which copy text from
  233. the buffer into the search string, now convert it to lower case
  234. if you are in a case-insensitive search.  This is to avoid making
  235. the search a case-sensitive one.
  236.  
  237. * GNUS now knows your time zone automatically if Emacs does.
  238.  
  239. * Hide-ifdef mode no longer defines keys of the form
  240. C-c LETTER, since those keys are reserved for users.
  241. Those commands have been moved to C-c M-LETTER.
  242. We may move them again for greater consistency with other modes.
  243.  
  244. Changes in version 19.12.
  245.  
  246. * You can now make many of the sort commands ignore case by setting
  247. `sort-fold-case' to a non-nil value.
  248.  
  249. Changes in version 19.11.
  250.  
  251. * Supercite is installed.
  252.  
  253. * `write-file-hooks' functions that return non-nil are responsible
  254. for making a backup file if you want that to be done.
  255. To do so, execute the following code:
  256.  
  257.    (or buffer-backed-up (backup-buffer))
  258.  
  259. You might wish to save the file modes value returned by
  260. `backup-buffer' and use that to set the mode bits of the file
  261. that you write.  This is what `basic-save-buffer' does when
  262. it writes a file in the usual way.
  263.  
  264. (This is not actually new, but wasn't documented before.)
  265.  
  266. Changes in version 19.10.
  267.  
  268. * The command `repeat-complex-command' is now on C-x ESC ESC.
  269. It used to be bound to C-x ESC.
  270.  
  271. The reason for this change is to make function keys work after C-x.
  272.  
  273. * The variable `highlight-nonselected-windows' now controls whether
  274. the region is highlighted in windows other than the selected window
  275. (in Transient Mark mode only, of course, and currently only when
  276. using X).
  277.  
  278. Changes in version 19.8.
  279.  
  280. * It is now simpler to tell Emacs to display accented characters under
  281. X windows.  M-x standard-display-european toggles the display of
  282. buffer text according to the ISO Latin-1 standard.  With a prefix
  283. argument, this command enables European character display iff the
  284. argument is positive.
  285.  
  286. * The `-i' command-line argument tells Emacs to use a picture of the
  287. GNU gnu as its icon, instead of letting the window manager choose an
  288. icon for it.  This option used to insert a file into the current
  289. buffer; use `-insert' to do that now.
  290.  
  291. * The `configure' script now supports `--prefix' and `--exec-prefix'
  292. options.
  293.  
  294. The `--prefix=PREFIXDIR' option specifies where the installation process
  295. should put emacs and its data files.  This defaults to `/usr/local'.
  296. - Emacs (and the other utilities users run) go in PREFIXDIR/bin
  297.   (unless the `--exec-prefix' option says otherwise).
  298. - The architecture-independent files go in PREFIXDIR/lib/emacs/VERSION
  299.   (where VERSION is the version number of Emacs, like `19.7').
  300. - The architecture-dependent files go in
  301.   PREFIXDIR/lib/emacs/VERSION/CONFIGURATION
  302.   (where CONFIGURATION is the configuration name, like mips-dec-ultrix4.2),
  303.   unless the `--exec-prefix' option says otherwise.
  304.  
  305. The `--exec-prefix=EXECDIR' option allows you to specify a separate
  306. portion of the directory tree for installing architecture-specific
  307. files, like executables and utility programs.  If specified,
  308. - Emacs (and the other utilities users run) go in EXECDIR/bin, and
  309. - The architecture-dependent files go in
  310.   EXECDIR/lib/emacs/VERSION/CONFIGURATION.
  311. EXECDIR/bin should be a directory that is normally in users' PATHs.
  312.  
  313. * When running under X Windows, the new lisp function `x-list-fonts'
  314. allows code to find out which fonts are available from the X server.
  315. The first argument PATTERN is a string, perhaps with wildcard characters;
  316.   the * character matches any substring, and
  317.   the ? character matches any single character.
  318.   PATTERN is case-insensitive.
  319. If the optional arguments FACE and FRAME are specified, then
  320. `x-list-fonts' returns only fonts the same size as FACE on FRAME.
  321.  
  322.  
  323.  
  324. Changes in version 19.
  325.  
  326. * When you kill buffers, Emacs now returns memory to the operating system,
  327. thus reducing the size of the Emacs process.  All the space that you free
  328. up by killing buffers can now be reused for other buffers no matter what
  329. their sizes, or reused by other processes if Emacs doesn't need it.
  330.  
  331. * Emacs now does garbage collection and auto saving while it is waiting
  332. for input, which often avoids the need to do these things while you
  333. are typing.
  334.  
  335. The variable `auto-save-timeout' says how many seconds Emacs should
  336. wait, after you stop typing, before it does an auto save and a garbage
  337. collection.
  338.  
  339. * If auto saving detects that a buffer has shrunk greatly, it refrains
  340. from auto saving that buffer and displays a warning.  Now it also turns
  341. off Auto Save mode in that buffer, so that you won't get the same
  342. warning again.
  343.  
  344. If you reenable Auto Save mode in that buffer, Emacs will start saving
  345. it again with no further warnings.
  346.  
  347. * A new minor mode called Line Number mode displays the current line
  348. number in the mode line, updating it as necessary when you move
  349. point.
  350.  
  351. However, if the buffer is very large (larger than the value of
  352. `line-number-display-limit'), then the line number doesn't appear.
  353. This is because computing the line number can be painfully slow if the
  354. buffer is very large.
  355.  
  356. * You can quit while Emacs is waiting to read or write files.
  357.  
  358. * The arrow keys now have default bindings to move in the appropriate
  359. directions. 
  360.  
  361. * You can suppress next-line's habit of inserting a newline when
  362. called at the end of a buffer by setting next-line-add-newlines to nil
  363. (it defaults to t).
  364.  
  365. * You can now get back recent minibuffer inputs conveniently.  While
  366. in the minibuffer, type M-p to fetch the next earlier minibuffer
  367. input, and use M-n to fetch the next later input.
  368.  
  369. There are also commands to search forward or backward through the
  370. history for history elements that match a regular expression.  M-r
  371. searches older elements in the history, while M-s searches newer
  372. elements.  By special dispensation, these commands can always use the
  373. minibuffer to read their arguments even though you are already in the
  374. minibuffer when you issue them.
  375.  
  376. The history feature is available for all uses of the minibuffer, but
  377. there are separate history lists for different kinds of input.  For
  378. example, there is a list for file names, used by all the commands that
  379. read file names.  There is a list for arguments of commands like
  380. `query-replace'.  There are also very specific history lists, such
  381. as the one that `compile' uses for compilation commands.
  382.  
  383. * You can now display text in a mixture of fonts and colors, using the
  384. "face" feature, together with the overlay and text property features.
  385. See the Emacs Lisp manual for details.  The Emacs Users Manual describes
  386. how to change the colors and font of standard predefined faces.
  387.  
  388. * You can refer to files on other machines using special file name syntax:
  389.  
  390. /HOST:FILENAME
  391. /USER@HOST:FILENAME
  392.  
  393. When you do this, Emacs uses the FTP program to read and write files on
  394. the specified host.  It logs in through FTP using your user name or the
  395. name USER.  It may ask you for a password from time to time; this
  396. is used for logging in on HOST.
  397.  
  398. * Some C-x key bindings have been moved onto new prefix keys.
  399.  
  400. C-x r is a prefix for registers and rectangles.
  401. C-x n is a prefix for narrowing.
  402. C-x a is a prefix for abbrev commands.
  403.  
  404. C-x r C-SPC
  405. C-x r SPC    point-to-register    (Was C-x /)
  406. C-x r j        jump-to-register     (Was C-x j)
  407. C-x r s        copy-to-register     (Was C-x x)
  408. C-x r i        insert-register      (Was C-x g)
  409. C-x r r        copy-rectangle-to-register  (Was C-x r)
  410. C-x r k        kill-rectangle
  411. C-x r y        yank-rectangle
  412. C-x r o        open-rectangle
  413. C-x r f        frame-configuration-to-register
  414.           (This saves the state of all windows in all frames.)
  415. C-x r w        window-configuration-to-register
  416.           (This saves the state of all windows in the selected  frame.)
  417.  
  418. (Use C-x r j to restore a configuration saved with C-x r f or C-x r w.)
  419.  
  420. C-x n n        narrow-to-region    (Was C-x n)
  421. C-x n p        narrow-to-page        (Was C-x p)
  422. C-x n w        widen            (Was C-x w)
  423.  
  424. C-x a l        add-mode-abbrev        (Was C-x C-a)
  425. C-x a g        add-global-abbrev    (Was C-x +)
  426. C-x a i l    inverse-add-mode-abbrev    (Was C-x C-h)
  427. C-x a i g    inverse-add-global-abbrev  (Was C-x -)
  428. C-x a e        expand-abbrev        (Was C-x ')
  429.  
  430. (The old key bindings C-x /, C-x j, C-x x and C-x g
  431. have not yet been removed.)
  432.  
  433. * You can put a file name in a register to be able to visit the file
  434. quickly.  Do this:
  435.  
  436.    (set-register ?CHAR '(file . NAME))
  437.  
  438. where NAME is the file name as a string.  Then C-x r j CHAR finds that
  439. file.
  440.  
  441. This is useful for files that you need to visit frequently,
  442. but that you don't want to keep in buffers all the time.
  443.  
  444. * The keys M-g (fill-region) and C-x a (append-to-buffer)
  445. have been eliminated.
  446.  
  447. * The new command `string-rectangle' inserts a specified string on
  448. each line of the region-rectangle.
  449.  
  450. * C-x 4 r is now `find-file-read-only-other-window'.
  451.  
  452. * C-x 4 C-o is now `display-buffer', which displays a specified buffer
  453. in another window without selecting it.
  454.  
  455. * Picture mode has been substantially improved.  The picture editing commands
  456. now arrange for automatic horizontal scrolling to keep point visible
  457. when editing a wide buffer with truncate-lines on.  Picture-mode
  458. initialization now does a better job of rebinding standard commands;
  459. it finds not just their normal keybindings, but any function keys
  460. attached to them.
  461.  
  462. * If you enable Transient Mark mode, then the mark becomes "inactive"
  463. after every command that modifies the buffer.  While the mark is
  464. active, the region is highlighted (under X, at least).  Most commands
  465. that use the mark give an error if the mark is inactive, but you can
  466. use C-x C-x to make it active again.  This feature is also sometimes
  467. known as "Zmacs mode".
  468.  
  469. * Outline mode is now available as a minor mode.  This minor mode can
  470. combine with any major mode; it substitutes the C-c commands of
  471. Outline mode for those of the major mode.  Use M-x outline-minor-mode
  472. to enable and disable the new mode.
  473.  
  474. M-x outline-mode is unchanged; it still switches to Outline mode as a
  475. major mode.
  476.  
  477. * The default setting of `version-control' comes from the environment
  478. variable VERSION_CONTROL.
  479.  
  480. * The user option for controlling whether files can set local
  481. variables is now called `enable-local-variables'.  A value of t means
  482. local-variables lists are obeyed; nil means they are ignored; anything
  483. else means query the user.
  484.  
  485. The user option for controlling use of the `eval' local variable is
  486. now called is `enable-local-eval'; its values are interpreted like
  487. those of `enable-local-variables'.
  488.  
  489. * X Window System changes:
  490.  
  491. C-x 5 C-f and C-x 5 b switch to a specified file or buffer in a new
  492. frame.  Likewise, C-x 5 m starts outgoing mail in another frame, and
  493. C-x 5 . finds a tag in another frame.
  494.  
  495. When you are using X, C-z now iconifies the selected frame.
  496.  
  497. Emacs can now exchange text with other X applications.  Killing or
  498. copying text in Emacs now makes that text available for pasting into
  499. other X applications.  The Emacs yanking commands now insert the
  500. latest selection set by other applications, and add the text to the
  501. kill ring.  The Emacs commands for selecting and inserting text with
  502. the mouse now use the kill ring in the same way the keyboard killing
  503. and yanking commands do.
  504.  
  505. The option to specify the title for the initial frame is now `-name NAME'.
  506. There is currently no way to specify an icon title; perhaps we will add
  507. one in the future.
  508.  
  509. * Undoing a deletion now puts point back where it was before the
  510. deletion.
  511.  
  512. * The variables that control how much undo information to save have
  513. been renamed to `undo-limit' and `undo-strong-limit'.  They used to be
  514. called `undo-threshold' and `undo-high-threshold'.
  515.  
  516. * You can now use kill commands in read-only buffers.  They don't
  517. actually change the buffer, and Emacs will beep and warn you that the
  518. buffer is read-only, but they do copy the text you tried to kill into
  519. the kill ring, so you can yank it into other buffers.
  520.  
  521. * C-o inserts the fill-prefix on the newly created line.  The command
  522. M-^ deletes the prefix (if it occurs) after the newline that it
  523. deletes.
  524.  
  525. * C-M-l now runs the command `reposition-window'.  It scrolls the
  526. window heuristically in a way designed to get useful information onto
  527. the screen.
  528.  
  529. * C-M-r is now reverse incremental regexp search.
  530.  
  531. * M-z now kills through the target character.  In version 18, it
  532. killed up to but not including the target character.
  533.  
  534. * M-! now runs the specified shell command asynchronously if it
  535. ends in `&' (just as the shell does).
  536.  
  537. * C-h C-f and C-h C-k are new help commands that display the Info
  538. node for a given Emacs function name or key sequence, respectively.
  539.  
  540. * The C-h p command system lets you find Emacs Lisp packages by
  541. topic keywords.  Here is a partial list of package categories:
  542.  
  543. abbrev          abbreviation handling, typing shortcuts, macros
  544. bib          code related to the bib bibliography processor
  545. c          C and C++ language support
  546. calendar      calendar and time management support
  547. comm          communications, networking, remote access to files
  548. docs          support for Emacs documentation
  549. emulations    emulations of other editors
  550. extensions    Emacs Lisp language extensions
  551. games          games, jokes and amusements
  552. hardware      support for interfacing with exotic hardware
  553. help          support for on-line help systems
  554. i14n          internationalization and alternate character-set support
  555. internal      code for Emacs internals, build process, defaults
  556. languages     specialized modes for editing programming languages
  557. lisp          Lisp support, including Emacs Lisp
  558. local          code local to your site
  559. maint          maintenance aids for the Emacs development group
  560. mail          modes for electronic-mail handling
  561. news          support for netnews reading and posting
  562. processes     process, subshell, compilation, and job control support
  563. terminals     support for terminal types
  564. tex          code related to the TeX formatter
  565. tools          programming tools
  566. unix          front-ends/assistants for, or emulators of, UNIX features
  567. vms          support code for vms
  568. wp          word processing
  569.  
  570. More will be added soon.
  571.  
  572. * The command to split a window into two side-by-side windows is now
  573. C-x 3.  It was C-x 5.
  574.  
  575. * M-. (find-tag) no longer has any effect on what M-, will do
  576. subsequently.  You can no longer use M-, to find the next similar tag;
  577. you must use M-. with a prefix argument, instead.
  578.  
  579. The motive for this change is so that you can more reliably use
  580. M-, to resume a suspended `tags-search' or `tags-query-replace'.
  581.  
  582. * C-x s (`save-some-buffers') now gives you more options when it asks
  583. whether to save a particular buffer.  In addition to `y' or `n', you
  584. can answer `!' to save all the remaining buffers, `.' to save this
  585. buffer but not save any others, ESC to stop saving and exit the
  586. command, and C-h to get help.  These options are analogous to those 
  587. of `query-replace'.
  588.  
  589. * M-x make-symbolic-link does not expand its first argument.
  590. This lets you make a link with a target that is a relative file name.
  591.  
  592. * M-x add-change-log-entry and C-x 4 a now automatically insert the
  593. name of the file and often the name of the function that you changed.
  594. They also handle grouping of entries.
  595.  
  596. There is now a special major mode for editing ChangeLog files.  It
  597. makes filling work conveniently.  Each bunch of grouped entries is one
  598. paragraph, and each collection of entries from one person on one day
  599. is considered a page.
  600.  
  601. * The `comment-region' command adds comment delimiters to the lines that
  602. start in the region, thus commenting them out.  With a negative argument,
  603. it deletes comment delimiters from the lines in the region--this cancels
  604. the effect of `comment-region' without an argument.
  605.  
  606. With a positive argument, `comment-region' adds comment delimiters
  607. but duplicates the last character of the comment start sequence as many
  608. times as the argument specifies.  This is a way of calling attention to
  609. the comment.  In Lisp, you should use an argument at least two, because
  610. the indentation convention for single semicolon comments does not leave
  611. them at the beginning of a line.
  612.  
  613. * If `split-window-keep-point' is non-nil, C-x 2 tries to avoid
  614. shifting any text on the screen by putting point in whichever window
  615. happens to contain the screen line the cursor is already on.
  616. The default is that `split-window-keep-point' is non-nil on slow
  617. terminals.
  618.  
  619. * M-x super-apropos is like M-x apropos except that it searches both
  620. Lisp symbol names and documentation strings for matches.  It describes
  621. every symbol that has a match in either the symbol's name or its
  622. documentation.
  623.  
  624. Both M-x apropos and M-x super-apropos take an optional second
  625. argument DO-ALL which controls the more expensive part of the job.
  626. This includes looking up and printing the key bindings of all
  627. commands.  It also includes checking documentation strings in
  628. super-apropos.  DO-ALL is nil by default; use a prefix arg to make it
  629. non-nil.
  630.  
  631. * M-x revert-buffer no longer offers to revert from a recent auto-save
  632. file unless you give it a prefix argument.  Otherwise it always
  633. reverts from the real file regardless of whether there has been an
  634. auto-save since thenm.  (Reverting from the auto-save file is no longer
  635. very useful now that the undo capacity is larger.)
  636.  
  637. * M-x recover-file no longer turns off Auto Save mode when it reads
  638. the last Auto Save file.
  639.  
  640. * M-x rename-buffer, if you give it a prefix argument,
  641. avoids errors by modifying the new name to make it unique.
  642.  
  643. * M-x rename-uniquely renames the current buffer to a similar name
  644. with a numeric suffix added to make it both different and unique.
  645.  
  646. One use of this command is for creating multiple shell buffers.
  647. If you rename your shell buffer, and then do M-x shell again, it
  648. makes a new shell buffer.  This method is also good for mail buffers,
  649. compilation buffers, and any Emacs feature which creates a special
  650. buffer with a particular name.
  651.  
  652. * M-x compare-windows with a prefix argument ignores changes in whitespace.
  653. If `compare-ignore-case' is non-nil, then differences in case are also
  654. ignored.
  655.  
  656. * `backward-paragraph' is now bound to M-{ by default, and `forward-paragraph'
  657. to M-}.  Originally, these commands were bound to M-[ and M-], but they were
  658. running into conflicts with the use of function keys.  On many terminals,
  659. function keys send a sequence beginning ESC-[, so many users have defined this
  660. as a prefix key.
  661.  
  662. * C-x C-u (upcase-region) and C-x C-l (downcase-region) are now disabled by
  663. default; these commands seem to be often hit by accident, and can be
  664. quite destructive if their effects are not noticed immediately.
  665.  
  666. * The function `erase-buffer' is now interactive, but disabled by default.
  667.  
  668. * When visiting a new file, Emacs attempts to abbreviate the file's
  669. path using the symlinks listed in `directory-abbrev-alist'.
  670.  
  671. * When you visit the same file in under two names that translate into
  672. the same name once symbolic links are handled, Emacs warns you that
  673. you have two buffers for the same file.
  674.  
  675. * If you wish to avoid visiting the same file in two buffers under
  676. different names, set the variable `find-file-existing-other-name'
  677. non-nil.  Then `find-file' uses the existing buffer visiting the file,
  678. no matter which of the file's names you specify.
  679.  
  680. * If you set `find-file-visit-truename' non-nil, then the file name
  681. recorded for a buffer is the file's truename (in which all symbolic
  682. links have been removed), rather than the name you specify.  Setting
  683. `find-file-visit-truename' also implies the effect of
  684. `find-file-existing-other-name'.
  685.  
  686. * C-x C-v now inserts the entire current file name in the minibuffer.
  687. This is convenient if you made a small mistake in typing it.  Point
  688. goes after the last slash, before the last file name component, so if
  689. you want to replace it entirely, you can use C-k right away to delete
  690. it.
  691.  
  692. * Commands such as C-M-f in Lisp mode now ignore parentheses within comments.
  693.  
  694. * C-x q now uses ESC to terminate all iterations of the keyboard
  695. macro, rather than C-d as before.
  696.  
  697. * Use the command `setenv' to set an individual environment variable
  698. for Emacs subprocesses.  Specify a variable name and a value, both as
  699. strings.  This command applies only to subprocesses yet to be
  700. started.
  701.  
  702. * Use `rot13-other-window' to examine a buffer with rot13.
  703.  
  704. This command does not change the text in the buffer.  Instead, it
  705. creates a window with a funny display table that applies the code when
  706. displaying the text.
  707.  
  708. * The command `M-x version' now prints the current Emacs version; The
  709. `version' command is an alias for the `emacs-version' command.
  710.  
  711. * More complex changes in existing packages.
  712.  
  713. ** `fill-nonuniform-paragraphs' is a new command, much like
  714. `fill-individual-paragraphs' except that only separator lines separate
  715. paragraphs.  Since this means that the lines of one paragraph may have
  716. different amounts of indentation, the fill prefix used is the smallest
  717. amount of indentation of any of the lines of the paragraph.
  718.  
  719. ** Filling is now partially controlled by a new minor mode, Adaptive
  720. Fill mode.  When this mode is enabled (and it is enabled by default),
  721. if you use M-x fill-region-as-paragraph on an indented paragraph and
  722. you don't have a fill prefix, it uses the indentation of the second
  723. line of the paragraph as the fill prefix.
  724.  
  725. Adaptive Fill mode doesn't have much effect on M-q in most major
  726. modes, because an indented line will probably count as a paragraph
  727. starter and thus each line of an indented paragraph will be considered
  728. a paragraph of its own.
  729.  
  730. ** M-q in C mode now runs `c-fill-paragraph', which is designed
  731. for filling C comments.  (We assume you don't want to fill
  732. the code in a C program.)
  733.  
  734. ** M-$ now runs the Ispell program instead of the Unix spell program.
  735.  
  736. M-$ starts an Ispell process the first time you use it.  But the process
  737. stays alive, so that subsequent uses of M-$ run very fast.
  738. If you want to get rid of the process, use M-x kill-ispell.
  739.  
  740. To check the entire current buffer, use M-x ispell-buffer.
  741. Use M-x ispell-region to check just the current region.
  742.  
  743. Ispell commands often involve interactive replacement of words.
  744. You can interrupt the interactive replacement with C-g.
  745. You can restart it again afterward with C-u M-$.
  746.  
  747. During interactive replacement, you can type the following characters:
  748.  
  749. a    Accept this word this time.
  750. DIGIT    Replace the word (this time) with one of the displayed near-misses.
  751.     The digit you use says which near-miss to use.
  752. i    Insert this word in your private dictionary
  753.       so that Ispell will consider it correct it from now on.
  754. r    Replace the word this time with a string typed by you.
  755.  
  756. When the Ispell process starts, it reads your private dictionary which
  757. is the file `~/ispell.words'.  If you "insert" words with the `i' command,
  758. these words are added to that file, but not right away--only at the end
  759. of the interactive replacement process.
  760.  
  761. Use M-x reload-ispell to reload your private dictionary from
  762. `~/ispell.words' if you edit it outside of Ispell.
  763.  
  764. * Changes in existing modes.
  765.  
  766. ** gdb-mode has been replaced by gud-mode.
  767.  
  768. The package gud.el (Grand Unified Debugger) replaces gdb.el in Emacs
  769. 19.  It provides a gdb.el-like interface to any of three debuggers;
  770. gdb itself, the sdb debugger supported on some Unix systems, or the
  771. dbx debugger on Berkeley systems.
  772.  
  773.    You start it up with one of the commands M-x gdb, M-x sdb, or
  774. M-x dbx.  Each entry point finishes by executing a hook; gdb-mode-hook,
  775. sdb-mode-hook or dbx-mode-hook respectively.
  776.  
  777. These bindings have changed:
  778. C-x C-a >    gud-down            (was M-d)
  779. C-x C-a <    gud-up                (was M-u)
  780. C-x C-a C-r    gud-cont            (was M-c)
  781. C-x C-a C-n    gud-next            (was M-n)
  782. C-x C-a C-s    gud-step            (was M-s)
  783. C-x C-a C-i     gud-stepi            (was M-i)
  784. C-x C-a C-l    gud-recenter            (was C-l)
  785. C-d        comint-delchar-or-maybe-eof    (was C-c C-d)
  786.  
  787. These bindings have been removed:
  788. C-c C-r        (was comint-show-output; now gud-cont)
  789.  
  790. Since GUD mode uses comint, it uses comint's input history commands,
  791. superseding C-c C-y (copy-last-shell-input):
  792.   M-p        comint-next-input
  793.   M-n        comint-previous-input
  794.   M-r        comint-previous-similar-input
  795.   M-s        comint-next-similar-input
  796.   M-C-r        comint-previous-input-matching
  797.  
  798. The C-x C-a bindings are also active in source files.
  799.  
  800. ** The old TeX mode bindings of M-{ and M-} have been moved to C-c {
  801. and C-c }.  (These commands are `up-list' and `tex-insert-braces';
  802. they are the TeX equivalents of M-( and M-).)  This is because M-{ 
  803. and M-} are now globally defined commands.
  804.  
  805. ** Changes in Mail mode.
  806.  
  807. `%' is now a word-separator character in Mail mode.
  808.  
  809. `mail-signature', if non-nil, tells M-x mail to insert your
  810. `.signature' file automatically.  If you don't want your signature in
  811. a particular message, just delete it before you send the message.
  812.  
  813. You can specify the text to insert at the beginning of each line when
  814. you use C-c C-y to yank the message you are replying to.  Set
  815. `mail-yank-prefix' to the desired string.  A value of `nil' (the
  816. default) means to use indentation, as in Emacs 18.  If you use just
  817. C-u as the prefix argument to C-c C-y, then it does not insert
  818. anything at the beginning of the lines, regardless of the value of
  819. `mail-yank-prefix'.
  820.  
  821. If you like, you can expand mail aliases as abbrevs, as soon as you
  822. type them in.  To enable this feature, execute the following:
  823.  
  824.     (add-hook 'mail-setup-hook 'mail-abbrevs-setup)
  825.  
  826. This can go in your .emacs file.
  827.  
  828. Word abbrevs don't expand unless you insert a word-separator character
  829. afterward.  Any mail aliases that you didn't expand at insertion time
  830. are expanded subsequently when you send the message.
  831.  
  832. ** Changes in Rmail.
  833.  
  834. Rmail by default gets new mail only from the system inbox file,
  835. not from `~/mbox'.
  836.  
  837. In Rmail, you can retry sending a message that failed
  838. by typing `M-m' on the failure message.
  839.  
  840. By contrast, another new command M-x rmail-resend is used for
  841. forwarding a message and marking it as "resent from" you
  842. with header fields "Resent-From:" and "Resent-To:".
  843.  
  844. `e' is now the command to edit a message.
  845. To expunge, type `x'.  We know this will surprise people
  846. some of the time, but the surprise will not be disastrous--if
  847. you type `e' meaning to expunge, just turn off editing with C-c C-c
  848. and then type `x'.
  849.  
  850. Another new Rmail command is `<', which moves to the first message.
  851. This is for symmetry with `>'.
  852.  
  853. Use the `b' command to bury the Rmail buffer and its summary buffer,
  854. if any, removing both of them from display on the screen.
  855.  
  856. The variable `rmail-output-file-alist' now controls the default
  857. for the file to output a message to.
  858.  
  859. In the Rmail summary buffer, all cursor motion commands select
  860. the message you move to.  It's really neat when you use
  861. incremental search.
  862.  
  863. You can now issue most Rmail commands from an Rmail summary buffer.
  864. The commands do the same thing in that buffer that they do in the
  865. Rmail buffer.  They apply to the message that is selected in the Rmail
  866. buffer, which is always the one described by the current summary
  867. line.
  868.  
  869. Conversely, motion and deletion commands in the Rmail buffer also
  870. update the summary buffer.  If you set the variable
  871. `rmail-redisplay-summary' to a non-nil value, then they bring the
  872. summary buffer (if one exists) back onto the screen.
  873.  
  874. C-M-t is a new command to make a summary by topic.  It uses regexp
  875. matching against just the subjects of the messages to decide which
  876. messages to show in the summary.
  877.  
  878. You can easily convert an Rmail file to system mailbox format with the
  879. command `unrmail'.  This command reads two arguments, the name of
  880. the Rmail file to convert, and the name of the new mailbox file.
  881. (This command does not change the Rmail file itself.)
  882.  
  883. Rmail now handles Content Length fields in messages.
  884.  
  885. ** `mail-extract-address-components' unpacks mail addresses.
  886. It takes an address as a string (the contents of the From field, for
  887. example) and returns a list of the form (FULL-NAME
  888. CANONICAL-ADDRESS).
  889.  
  890. ** Changes in C mode and C-related commands.
  891.  
  892. *** M-x c-up-conditional
  893.  
  894. In C mode, `c-up-conditional' moves back to the containing
  895. preprocessor conditional, setting the mark where point was
  896. previously.
  897.  
  898. A prefix argument acts as a repeat count.  With a negative argument,
  899. this command moves forward to the end of the containing preprocessor
  900. conditional.  When going backwards, `#elif' acts like `#else' followed
  901. by `#if'.  When going forwards, `#elif' is ignored.
  902.  
  903. *** In C mode, M-a and M-e are now defined as
  904. `c-beginning-of-statement' and `c-end-of-statement'.
  905.  
  906. *** In C mode, M-x c-backslash-region is a new command to insert or
  907. align `\' characters at the ends of the lines of the region, except
  908. for the last such line.  This is useful after writing or editing a C
  909. macro definition.
  910.  
  911. If a line already ends in `\', this command adjusts the amount of
  912. whitespace before it.  Otherwise, it inserts a new `\'.
  913.  
  914. ** New features in info.
  915.  
  916. When Info looks for an Info file, it searches the directories
  917. in `Info-directory-list'.  This makes it easy to install the Info files
  918. that come with various packages.  You can specify the path with
  919. the environment variable INFOPATH.
  920.  
  921. There are new commands in Info mode.
  922.  
  923. `]' now moves forward a node, going up and down levels as needed.
  924. `[' is similar but moves backward.  These two commands try to traverse
  925. the entire Info tree, node by node.  They are the equivalent of reading
  926. a printed manual sequentially.
  927.  
  928. `<' moves to the top node of the current Info file.
  929. `>' moves to the last node of the file.
  930.  
  931. SPC scrolls through the current node; at the end, it advances to the
  932. next node in depth-first order (like `]').
  933.  
  934. DEL scrolls backwards in the current node; at the end, it moves to the
  935. previous node in depth-first order (like `[').
  936.  
  937. After a menu select, the info `up' command now restores point in the
  938. menu.  The combination of this and the previous two changes means that
  939. repeated SPC keystrokes do the right (depth-first traverse forward) thing.
  940.  
  941. `i STRING RET' moves to the node associated with STRING in the index
  942. or indices of this manual.  If there is more than one match for
  943. STRING, the `i' command finds the first match.
  944.  
  945. `,' finds the next match for the string in the previous `i' command
  946.  
  947. If you click the middle mouse button near a cross-reference,
  948. menu item or node pointer while in Info, you will go to the node
  949. which is referenced.
  950.  
  951. ** Changes in M-x compile.
  952.  
  953. You can repeat any previous compilation command conveniently using the
  954. minibuffer history commands, while in the minibuffer entering the
  955. compilation command.
  956.  
  957. While a compilation is going on, the string `Compiling' appears in
  958. the mode line.  When this string disappears, that tells you the
  959. compilation is finished.
  960.  
  961. The buffer of compiler messages is in Compilation mode.  This mode
  962. provides the keys SPC and DEL to scroll by screenfuls, and M-n and M-p
  963. to move to the next or previous error message.  You can also use C-c
  964. C-c on any error message to find the corresponding source code.
  965.  
  966. Emacs 19 has a more general parser for compiler messages.  For example, it
  967. can understand messages from lint, and from certain C compilers whose error
  968. message format is unusual.  Also, it only parses until it sees the error
  969. message you want; you never have to wait a long time to see the first
  970. error, no matter how big the buffer is.
  971.  
  972. ** M-x diff and M-x diff-backup.
  973.  
  974. This new command compares two files, displaying the differences in an
  975. Emacs buffer.  The options for the `diff' program come from the
  976. variable `diff-switches', whose value should be a string.
  977.  
  978. The buffer of differences has Compilation mode as its major mode, so you
  979. can use C-x ` to visit successive changed locations in the two
  980. source files, or you can move to a particular hunk of changes and type
  981. C-c C-c to move to the corresponding source.  You can also use the
  982. other special commands of Compilation mode: SPC and DEL for
  983. scrolling, and M-n and M-p for cursor motion.
  984.  
  985. M-x diff-backup compares a file with its most recent backup.
  986. If you specify the name of a backup file, `diff-backup' compares it
  987. with the source file that it is a backup of.
  988.  
  989. ** The View commands (such as M-x view-buffer and M-x view-file) no
  990. longer use recursive edits; instead, they switch temporarily to a
  991. different major mode (View mode) specifically designed for moving
  992. around through a buffer without editing it.
  993.  
  994. ** Changes in incremental search.
  995.  
  996. *** The character to terminate an incremental search is now RET.
  997. This is for compatibility with the way most other arguments are read.
  998.  
  999. To search for a newline in an incremental search, type LFD (also known
  1000. as C-j).
  1001.  
  1002. *** Incremental search now maintains a ring of previous search
  1003. strings.  Use M-p and M-n to move through the ring to pick a search
  1004. string to reuse.  These commands leave the selected search ring
  1005. element in the minibuffer, where you can edit it.  Type C-s or C-r to
  1006. finish editing and search for the chosen string.
  1007.  
  1008. *** If you type an upper case letter in incremental search, that turns
  1009. off case-folding, so that you get a case-sensitive search.
  1010.  
  1011. *** If you type a space during regexp incremental search, it matches
  1012. any sequence of whitespace characters.  If you want to match just a space,
  1013. type C-q SPC.
  1014.  
  1015. *** Incremental search is now implemented as a major mode.  When you
  1016. type C-s, it switches temporarily to a different keymap which defines
  1017. each key to do what it ought to do for incremental search.  This has
  1018. next to no effect on the user-visible behavior of searching, but makes
  1019. it easier to customize that behavior.
  1020.  
  1021. Emacs 19 eliminates the old variables `search-...-char' that used to
  1022. be the way to specify the characters to use for various special
  1023. purposes in incremental search.  Instead, you can define the meaning
  1024. of a character in incremental search by modifying `isearch-mode-map'.
  1025.  
  1026. ** New commands in Buffer Menu mode.
  1027.  
  1028. The command C-o now displays the current line's buffer in another
  1029. window but does not select it.  This is like the existing command `o'
  1030. which selects the current line's buffer in another window.
  1031.  
  1032. The command % toggles the read-only flag of the current line's buffer.
  1033.  
  1034. The way to switch to a set of several buffers, including those marked
  1035. with m, is now v.  The q command simply quits, replacing the buffer
  1036. menu buffer with the buffer that was displayed previously.
  1037.  
  1038. * New major modes and packages.
  1039.  
  1040. ** The news reader GNUS is now installed.
  1041.  
  1042. ** There is a new interface for version control systems, called VC.
  1043. It works with both RCS and SCCS; in fact, you don't really have to
  1044. know which one of them is being used, because it automatically deals
  1045. with either one.
  1046.  
  1047. Most of the time, the only command you have to know about is C-x C-q.
  1048. This command normally toggles the read-only flag of the current
  1049. buffer.  If the buffer is visiting a file that is maintained with a
  1050. version control system, the command still toggles read-only, but does
  1051. so by checking the file in or checking it out.
  1052.  
  1053. When you check a file in, VC asks you for a log entry by popping up a
  1054. buffer.  Edit the entry there, then type C-c C-c when it is ready.
  1055. That's when the actual checkin happens.  If you change your mind about
  1056. the checkin, simply switch buffers and don't ever go back to the log
  1057. buffer.
  1058.  
  1059. To start using version control for a file, use the command C-x v v.
  1060. This works like C-x C-q (performing the next logical version-control
  1061. operation needed to change the file's writeability) but it will also
  1062. perform initial checkin on an unregistered file.
  1063.  
  1064. By default, VC uses RCS if RCS is installed on your machine;
  1065. otherwise, SCCS.  If you want to make the choice explicitly, you can do
  1066. it by setting `vc-default-back-end' to the symbol `RCS' or the symbol
  1067. `SCCS'.
  1068.  
  1069. You can tell when a file you visit is maintained with version control
  1070. because either `RCS' or `SCCS' appears in the mode line.
  1071.  
  1072. ** A new Calendar mode has been added, based on the work of Nachum
  1073. Dershowitz and Edward M. Reingold.  The mode can display the Gregorian
  1074. calendar and a variety of other calendars at any date, and interacts
  1075. with a diary facility similar to the UNIX `calendar' utility.
  1076.  
  1077. ** There is a new major mode for editing binary files: Hexl mode.
  1078. To use it, use M-x hexl-find-file instead of C-x C-f to visit the file.
  1079. This command converts the file's contents to hexadecimal and lets you
  1080. edit the translation.  When you save the file, it is converted 
  1081. automatically back to binary.
  1082.  
  1083. You can also use M-x hexl-mode to translate an existing buffer into hex.
  1084. Do this if you have already visited a binary file.  
  1085.  
  1086. Hexl mode has a few other commands:
  1087.  
  1088. C-M-d    insert a byte with a code typed in decimal.
  1089. C-M-o    insert a byte with a code typed in octal.
  1090. C-M-x    insert a byte with a code typed in hex.
  1091.  
  1092. C-x [   move to the beginning of a 1k-byte "page".
  1093. C-x ]   move to the end of a 1k-byte "page".
  1094.  
  1095. M-g     go to an address specified in hex.
  1096. M-j    go to an address specified in decimal.
  1097.  
  1098. C-c C-c    leave hexl mode and go back to the previous major mode.
  1099.  
  1100. ** Miscellaneous new major modes include Awk mode, Icon mode, Makefile
  1101. mode, Perl mode and SGML mode.
  1102.  
  1103. ** Edebug, a new source-level debugger for Emacs Lisp functions.
  1104.  
  1105. To use Edebug, use the command M-x edebug-defun to "evaluate" a
  1106. function definition in an Emacs Lisp file.  We put "evaluate" in
  1107. quotation marks because it doesn't just evaluate the function, it also
  1108. inserts additional information to support source-level debugging.
  1109.  
  1110. You must also do
  1111.  
  1112.     (setq debugger 'edebug-debug)
  1113.  
  1114. to cause errors and single-stepping to use Edebug instead of the usual
  1115. Emacs Lisp debugger.
  1116.  
  1117. For more information, see the Edebug manual, which should be included
  1118. in the Emacs distribution.
  1119.  
  1120. ** C++ mode is like C mode, except that it understands C++ comment syntax
  1121. and certain other differences between C and C++.  It also has a command
  1122. `fill-c++-comment' which fills a paragraph made of comment lines.
  1123.  
  1124. The command `comment-region' is useful in C++ mode for commenting out
  1125. several consecutive lines, or removing the commenting out of such lines.
  1126.  
  1127. ** A new package for merging two variants of the same text.
  1128.  
  1129. It's not unusual for programmers to get their signals crossed and
  1130. modify the same program in two different directions.  Then somebody
  1131. has to merge the two versions.  The command `emerge-files' makes this
  1132. easier.
  1133.  
  1134. `emerge-files' reads two file names and compares them.  Then it
  1135. displays three buffers: one for each file, and one for the
  1136. differences.
  1137.  
  1138. If the original version of the file is available, you can make things
  1139. even easier using `emerge-files-with-ancestor'.  It reads three file
  1140. names--variant 1, variant 2, and the common ancestor--and uses diff3
  1141. to compare them.
  1142.  
  1143. You control the merging interactively.  The main loop of Emerge
  1144. consists of showing you one set of differences, asking you what to do
  1145. about them, and doing it.  You have a choice of two modes for giving
  1146. directions to Emerge: "fast" mode and "edit" mode.
  1147.  
  1148. In Fast mode, Emerge commands are single characters, and ordinary
  1149. Emacs commands are disabled.  This makes Emerge operations fast, but
  1150. prevents you from doing more than selecting the A or the B version of
  1151. differences.  In Edit mode, all emerge commands use the C-c prefix,
  1152. and the usual Emacs commands are available.  This allows editing the
  1153. merge buffer, but slows down Emerge operations.  Edit and fast modes
  1154. are indicated by `F' and `E' in the minor modes in the mode line.
  1155.  
  1156. The Emerge commands are:
  1157.  
  1158.     p    go to the previous difference
  1159.     n    go to the next difference
  1160.     a    select the A version of this difference
  1161.     b    select the B version of this difference
  1162.     j    go to a particular difference (prefix argument
  1163.         specifies which difference) (0j suppresses display of
  1164.         the flags)
  1165.     q    quit - finish the merge*
  1166.     f    go into fast mode
  1167.     e    go into edit mode
  1168.     l    recenter (C-l) all three windows*
  1169.     - and 0 through 9
  1170.         prefix numeric arguments
  1171.     d a    select the A version as the default from here down in
  1172.         the merge buffer*
  1173.     d b    select the B version as the default from here down in
  1174.         the merge buffer*
  1175.     c a    copy the A version of the difference into the kill
  1176.         ring
  1177.     c b    copy the B version of the difference into the kill
  1178.         ring
  1179.     i a    insert the A version of the difference at the point
  1180.     i b    insert the B version of the difference at the point
  1181.     m    put the point and mark around the difference region
  1182.     ^    scroll-down (like M-v) the three windows*
  1183.     v    scroll-up (like C-v) the three windows*
  1184.     <    scroll-left (like C-x <) the three windows*
  1185.     >    scroll-right (like C-x >) the three windows*
  1186.     |    reset horizontal scroll on the three windows*
  1187.     x 1    shrink the merge window to one line (use C-u l to restore it
  1188.         to full size)
  1189.     x a    find the difference containing a location in the A buffer*
  1190.     x b    find the difference containing a location in the B buffer*
  1191.     x c    combine the two versions of this difference*
  1192.     x C    combine the two versions of this difference, using a
  1193.         register's value as the template*
  1194.     x d    find the difference containing a location in the merge buffer*
  1195.     x f    show the files/buffers Emerge is operating on in Help window
  1196.         (use C-u l to restore windows)
  1197.     x j    join this difference with the following one
  1198.         (C-u x j joins this difference with the previous one)
  1199.     x l    show line numbers of points in A, B, and merge buffers
  1200.     x m    change major mode of merge buffer*
  1201.     x s    split this difference into two differences
  1202.         (first position the point in all three buffers to the places
  1203.         to split the difference)
  1204.     x t    trim identical lines off top and bottom of difference
  1205.         (such lines occur when the A and B versions are
  1206.         identical but differ from the ancestor version)
  1207.     x x    set the template for the x c command*
  1208.  
  1209. Normally, the merged output goes back in the first file specified.
  1210. If you use a prefix argument, Emerge reads another file name to use
  1211. for the output file.
  1212.  
  1213. Once Emerge has prepared the buffer of differences, it runs the hooks
  1214. in `emerge-startup-hooks'.
  1215.  
  1216. ** Asm mode is a new major mode for editing files of assembler code.
  1217. It defines these commands:
  1218.  
  1219. TAB    tab-to-tab-stop.
  1220. LFD    Insert a newline and then indent using tab-to-tab-stop.
  1221. :    Insert a colon and then remove the indentation
  1222.     from before the label preceding colon.  Then tab-to-tab-stop.
  1223. ;    Insert or align a comment.
  1224.  
  1225. ** Two-column mode lets you conveniently edit two side-by-side columns
  1226. of text.  It works using two side-by-side windows, each showing its
  1227. own buffer.
  1228.  
  1229. Here are three ways to enter two-column mode:
  1230.  
  1231. C-x 6 2 makes the current buffer into the left-hand buffer.  It the
  1232. right-hand window it puts a buffer whose name is based on the current
  1233. buffer's name.
  1234.  
  1235. C-x 6 b BUFFER RET makes the current buffer into the left-hand buffer,
  1236. and uses buffer BUFFER as the right-hand buffer.
  1237.  
  1238. C-x 6 s splits the current buffer, which contains two-column text,
  1239. into two side-by-side buffers.  The old current buffer becomes the
  1240. left-hand buffer, but the text in the right column is moved into the
  1241. right-hand buffer.  The current column specifies the split point.
  1242. Splitting starts with the current line and continues to the end of the
  1243. buffer.
  1244.  
  1245. C-x 6 s takes a prefix argument which specifies how many characters
  1246. before point constitute the column separator.  (The default argument
  1247. is 1, as usual, so by default the column separator is the character
  1248. before point.)  Lines that don't have the column separator at the
  1249. proper place remain unsplit; they stay in the left-hand buffer, and
  1250. the right-hand buffer gets an empty line to correspond.
  1251.  
  1252. You can scroll both buffers together using C-x 6 SPC (scroll up), C-x
  1253. 6 DEL (scroll down), and C-x 6 RET (scroll up one line).  C-x 6 C-l
  1254. recenters both buffers together.
  1255.  
  1256. If you want to make a lines which will span both columns, put it in
  1257. the left-hand buffer, with an empty line in the corresponding place in
  1258. the right-hand buffer.
  1259.  
  1260. When you have edited both buffers as you wish, merge them with C-x 6
  1261. 1.  This copies the text from the right-hand buffer as a second column
  1262. in the other buffer.  To go back to two-column editing, use C-x 6 s.
  1263.  
  1264. Use C-x 6 d to disassociate the two buffers, leaving each as it
  1265. stands.  (If the other buffer, the one that was not current when you
  1266. type C-x 6 d, is empty, C-x 6 d kills it.)
  1267.  
  1268. ** You can supply command arguments such as files to visit to an Emacs
  1269. that is already running.  To do this, you must do this in your .emacs
  1270. file:
  1271.    (add-hook 'suspend-hook 'resume-suspend-hook)
  1272. Also you must use the shellscript emacs.csh or emacs.sh, found in the
  1273. etc subdirectory.
  1274.  
  1275. ** Shell mode has been completely replaced.
  1276. The basic idea is the same, but there are new commands available in
  1277. this mode.
  1278.       
  1279. TAB now completes the file name before point in the shell buffer.
  1280. To get a list of all possible completions, type M-?.
  1281.  
  1282. There is a new convenient history mechanism for repeating previous
  1283. commands.  Use the command M-p to recall the last command; it copies
  1284. the text of that command to the place where you are editing.  If you
  1285. repeat M-p, it replaces the copied command with the previous command.
  1286. M-n is similar but goes in the opposite direction towards the present.
  1287. When you find the command you wanted, you can edit it, or just
  1288. resubmit it by typing RET.
  1289.  
  1290. You can also use M-r and M-s to search for (respectively) earlier or 
  1291. later inputs starting with a given string.  First type the string, 
  1292. then type M-r to yank a previous input from the history which starts
  1293. with that string.  You can repeat M-r to find successively earlier
  1294. inputs starting with the same string.  You can start moving in the
  1295. opposite direction (toward more recent inputs) by typing M-s instead
  1296. of M-r.  As long as you don't use any commands except M-r and M-s,
  1297. they keep using the same string that you had entered initially.
  1298.  
  1299. C-c C-o kills the last batch of output from a shell command.  This is
  1300. useful if a shell command spews out lots of output that just gets in
  1301. the way.
  1302.  
  1303. C-c C-r scrolls to display the beginning of the last batch of output
  1304. at the top of the window; it also moves the cursor there.
  1305.  
  1306. C-a on a line that starts with a shell prompt moves to the end of the
  1307. prompt, not to the very beginning of the line.
  1308.  
  1309. C-d typed at the end of the shell buffer sends EOF to the subshell.
  1310. At any other position in the buffer, it deletes a character as usual.
  1311.  
  1312. If Emacs gets confused while trying to track changes in the shell's
  1313. current directory, type M-x dirs to re-synchronize.
  1314.  
  1315. M-x send-invisible reads a line of text without echoing it, and
  1316. sends it to the shell.
  1317.  
  1318. If you accidentally suspend your process, use M-x comint-continue-subjob 
  1319. to continue it.
  1320.          
  1321. ** There is now a convenient way to enable flow control on terminals
  1322. where you can't win without it.  Suppose you want to do this on
  1323. VT-100 and H19 terminals; put the following in your `.emacs' file:
  1324.  
  1325.    (enable-flow-control-on "vt100" "h19")
  1326.  
  1327. When flow control is enabled, you must type C-\ to get the effect of a
  1328. C-s, and type C-^ to get the effect of a C-q.
  1329.  
  1330. The function `enable-flow-control' enables flow control unconditionally.
  1331.  
  1332. * Changes in Dired
  1333.  
  1334. Dired has many new features which allow you to do these things:
  1335.  
  1336. - Rename, copy, or make links to many files at once.
  1337.  
  1338. - Make distinguishable types of marks for different operations.
  1339.  
  1340. - Display contents of subdirectories in the same Dired buffer as the
  1341. parent directory.
  1342.  
  1343. ** Setting and Clearing Marks
  1344.  
  1345. There are now two kinds of marker that you can put on a file in Dired:
  1346. `D' for deletion, and `*' for any other kind of operation.
  1347. The `x' command deletes only files marked with `D', and most
  1348. other Dired commands operate only on the files marked with `*'.
  1349.  
  1350. To mark files with `D' (also called "flagging" the files), you
  1351. can use `d' as usual.  Here are some commands for marking with
  1352. `*' (and also for unmarking):
  1353.  
  1354. *** `m' marks the current file with `*', for an operation other than
  1355. deletion.
  1356.  
  1357. *** `*' marks all executable files.  With a prefix argument, it
  1358. unmarks all those files.
  1359.  
  1360. *** `@' marks all symbolic links.  With a prefix argument, it unmarks
  1361. all those files.
  1362.  
  1363. *** `/' marks all directory files except `.' and `..'.  With a prefix
  1364. argument, it unmarks all those files.
  1365.  
  1366. *** M-DEL removes a specific or all marks from every file.  With an
  1367. argument, queries for each marked file.  Type your help character,
  1368. usually C-h, at that time for help.
  1369.  
  1370. *** `c' replaces all marks that use the character OLD with marks that
  1371. use the character NEW.  You can use almost any character as a mark
  1372. character by means of this command, to distinguish various classes of
  1373. files.  If OLD is ` ', then the command operates on all unmarked
  1374. files; if NEW is ` ', then the command unmarks the files in acts on.
  1375.  
  1376. ** Operating on Multiple Files
  1377.  
  1378. The Dired commands to operate directly on files (rename them, copy
  1379. them, and so on) have been generalized to work on multiple files.
  1380. There are also some additional commands in this series.
  1381.  
  1382. All of these commands use the same convention to decide which files to
  1383. manipulate:
  1384.  
  1385. - If you give the command a numeric prefix argument @var{n}, it operates
  1386. on the next @var{n} files, starting with the current file.
  1387.  
  1388. - Otherwise, if there are marked files, the commands operate on all the
  1389. marked files.
  1390.  
  1391. - Otherwise, the command operates on the current file only.
  1392.  
  1393. These are the commands:
  1394.  
  1395. *** `C' copies the specified files.  You must specify a directory to
  1396. copy into, or (if copying a single file) a new name.
  1397.  
  1398. If `dired-copy-preserve-time' is non-`nil', then copying sets
  1399. the modification time of the new file to be the same as that of the old
  1400. file.
  1401.  
  1402. *** `R' renames the specified files.  You must specify a directory to
  1403. rename into, or (if renaming a single file) a new name.
  1404.  
  1405. Dired automatically changes the visited file name of buffers associated
  1406. with renamed files so that they refer to the new names.
  1407.  
  1408. *** `H' makes hard links to the specified files.  You must specify a
  1409. directory to make the links in, or (if making just one link) the name
  1410. to give the link.
  1411.  
  1412. *** `S' makes symbolic links to the specified files.  You must specify
  1413. a directory to make the links in, or (if making just one link) the
  1414. name to give the link.
  1415.  
  1416. *** `M' changes the mode of the specified files.  This calls the
  1417. `chmod' program, so you can describe the desired mode change with any
  1418. argument that `chmod' would handle.
  1419.  
  1420. *** `G' changes the group of the specified files.
  1421.  
  1422. *** `O' changes the owner of the specified files.  (On normal systems,
  1423. only the superuser can do this.)
  1424.  
  1425. The variable `dired-chown-program' specifies the name of the
  1426. program to use to do the work (different systems put `chown' in
  1427. different places.
  1428.  
  1429. *** `Z' compresses or uncompresses the specified files.
  1430.  
  1431. *** `L' loads the specified Emacs Lisp files.
  1432.  
  1433. *** `B' byte compiles the specified Emacs Lisp files.
  1434.  
  1435. *** `P' prints the specified files.  It uses the variables
  1436. `lpr-command' and `lpr-switches' just as `lpr-file' does.
  1437.  
  1438. ** Shell Commands in Dired
  1439.  
  1440. `!' reads a shell command string in the minibuffer and runs the shell
  1441. command on all the specified files.  There are two ways of applying a
  1442. shell command to multiple files:
  1443.  
  1444. - If you use `*' in the command, then the shell command runs just
  1445. once, with the list of file names substituted for the `*'.
  1446.  
  1447. Thus, `! tar cf foo.tar * RET' runs `tar' on the entire list of file
  1448. names, putting them into one tar file `foo.tar'.  The file names are
  1449. inserted in the order that they appear in the Dired buffer.
  1450.  
  1451. - If the command string doesn't contain `*', then it runs once for
  1452. each file, with the file name attached at the end.  For example, `!
  1453. uudecode RET' runs `uudecode' on each file.
  1454.  
  1455. To run the shell command once for each file but without being limited
  1456. to putting the file name inserted in the middle, use a shell loop.
  1457. For example, this shell command would run `uuencode' on each of the
  1458. specified files, writing the output into a corresponding `.uu' file:
  1459.  
  1460.     for file in *; uuencode $file $file >$file.uu; done
  1461.  
  1462. The working directory for the shell command is the top level directory
  1463. of the Dired buffer.
  1464.  
  1465. ** Regular Expression File Name Substitution
  1466.  
  1467. *** `% m REGEXP RET' marks all files whose names match the regular
  1468. expression REGEXP.
  1469.  
  1470. Only the non-directory part of the file name is used in matching.  Use
  1471. `^' and `$' to anchor matches.  Exclude subdirs by hiding them.
  1472.  
  1473. *** `% d REGEXP RET' flags for deletion all files whose names match
  1474. the regular expression REGEXP.
  1475.  
  1476. *** `% R', `% C', `% H', `% S'
  1477.  
  1478. These four commands rename, copy, make hard links and make soft links,
  1479. in each case computing the new name by regular expression substitution
  1480. from the name of the old file.  They  effectively perform
  1481. `query-replace-regexp' on the selected file names in the Dired buffer.
  1482.  
  1483. The commands read two arguments: a regular expression, and a
  1484. substitution pattern.  Each selected file name is matched against the
  1485. regular expression, and then the part which matched is replaced with
  1486. the substitution pattern.  You can use `\&' and `\DIGIT' in the
  1487. substitution pattern to refer to all or part of the old file name.
  1488.  
  1489. If the regular expression matches more than once in a file name,
  1490. only the first match is replaced.
  1491.  
  1492. Normally, the replacement process does not consider the directory names;
  1493. it operates on the file name within the directory.  If you specify a
  1494. prefix argument of zero, then replacement affects entire file name.
  1495.  
  1496. To apply the command to all files matching the same regexp that you
  1497. use in the command, mark those files with `% m REGEXP RET', then use
  1498. the same regular expression in `% R'.  To make this easier, `% R' uses
  1499. as a default the last regular expression specified in a `%' command.
  1500.  
  1501. ** Dired Case Conversion
  1502.  
  1503. *** `% u' renames each of the selected files to an upper case name.
  1504.  
  1505. *** `% l' renames each of the selected files to a lower case name.
  1506.  
  1507. ** File Comparison with Dired
  1508.  
  1509. *** `=' compares the current file with another file (the file at the
  1510. mark), by running the `diff' program.  The file at the mark is given
  1511. to `diff' first.
  1512.  
  1513. *** `M-=' compares the current file with its backup file.  If there
  1514. are several numerical backups, it uses the most recent one.  If this
  1515. file is a backup, it is compared with its original.
  1516.  
  1517. The backup file is the first file given to `diff'.
  1518.  
  1519. ** Subdirectories in Dired
  1520.  
  1521. You can display more than one directory in one Dired buffer.
  1522. The simplest way to do this is to specify the options `-lR' for
  1523. running `ls'.  That produces a recursive directory listing showing
  1524. all subdirectories, all within the same Dired buffer.
  1525.  
  1526. You can also insert the contents of a particular subdirectory with the
  1527. `i' command.  Use this command on the line that describes a file which
  1528. is a directory.  Inserted subdirectory contents follow the top-level
  1529. directory of the Dired buffer, just as they do in `ls -lR' output.
  1530.  
  1531. If the subdirectory's contents are already present in the buffer, the
  1532. `i' command just moves to it (type `l' to refresh it).  It sets the
  1533. Emacs mark before moving, so C-x C-x takes you back to the old
  1534. position in the buffer.
  1535.  
  1536. When you have subdirectories in the Dired buffer, you can use the page
  1537. motion commands C-x [ and C-x ] to move by entire directories.
  1538.  
  1539. The following commands move up and down in the tree of directories
  1540. in one Dired buffer:
  1541.  
  1542. *** C-M-u  Go up to the parent directory's headerline.
  1543.  
  1544. *** C-M-d  Go down in the tree, to the first subdirectory's
  1545. headerline.
  1546.  
  1547. *** C-M-n  Go to next subdirectory headerline, regardless of level.
  1548.  
  1549. *** C-M-p  Go to previous subdirectory headerline, regardless of
  1550. level.
  1551.  
  1552. ** Hiding Subdirectories
  1553.  
  1554. "Hiding" a subdirectory means to make it invisible, except for its
  1555. headerline.  Files inside a hidden subdirectory are never considered
  1556. by Dired.  For example, the commands to operate on marked files ignore
  1557. files in hidden directories even if they are marked.
  1558.  
  1559. *** `$' hides or unhides the current subdirectory and move to next
  1560. subdirectory.  A prefix argument serves as a repeat count.
  1561.  
  1562. *** `M-$' hides all subdirectories, leaving only their header lines.
  1563. Or, if at least one subdirectory is currently hidden, it makes
  1564. everything visible again.  You can use this command to get an overview
  1565. in very deep directory trees or to move quickly to subdirectories far
  1566. away.
  1567.  
  1568. ** Editing the Dired Buffer
  1569.  
  1570. *** `l' updates the specified files in a Dired buffer.  This means
  1571. reading their current status from the file system and changing the
  1572. buffer to reflect it properly.
  1573.  
  1574. If you use this command on a subdirectory header line, it updates the
  1575. contents of the subdirectory.
  1576.  
  1577. *** `g' updates the entire contents of the Dired buffer.  It preserves
  1578. all marks except for those on files that have vanished.  Hidden
  1579. subdirectories are updated but remain hidden.
  1580.  
  1581. *** `k' kills all marked lines (not the files).  With a prefix
  1582. argument, it kills that many lines starting with the current line.
  1583.  
  1584. This command does not delete files; it just deletes text from the Dired
  1585. buffer.
  1586.  
  1587. If you kill the line for a file that is a directory, then its contents
  1588. are also deleted from the buffer.  Typing `C-u k' on the header line
  1589. for a subdirectory is another way to delete a subdirectory from the
  1590. Dired buffer.
  1591.  
  1592. ** `find' and Dired.
  1593.  
  1594. To search for files with names matching a wildcard pattern use
  1595. `find-name-dired'.  Its arguments are DIRECTORY and
  1596. PATTERN.  It selects all the files in DIRECTORY or its
  1597. subdirectories whose own names match PATTERN.
  1598.  
  1599. The files thus selected are displayed in a Dired buffer in which the
  1600. ordinary Dired commands are available.
  1601.  
  1602. If you want to test the contents of files, rather than their names, use
  1603. `find-grep-dired'.  This command takes two minibuffer arguments,
  1604. DIRECTORY and REGEXP; it selects all the files in
  1605. DIRECTORY or its subdirectories that contain a match for
  1606. REGEXP.  It works by running `find' and `grep'.
  1607.  
  1608. The most general command in this series is `find-dired', which lets
  1609. you specify any condition that `find' can test.  It takes two
  1610. minibuffer arguments, DIRECTORY and FIND-ARGS; it runs `find' in
  1611. DIRECTORY with using FIND-ARGS as the arguments to `find' specifying
  1612. which files to accept.  To use this command, you need to know how to
  1613. use `find'.
  1614.  
  1615. * New amusements and novelties.
  1616.  
  1617. ** `M-x mpuz' displays a multiplication puzzle, in which each letter
  1618. stands for a digit, and you must determine which digit.  The puzzles
  1619. are determined randomly, so they are always different.
  1620.  
  1621. ** `M-x gomoku' plays the game Gomoku with you.  It needs more work.
  1622.  
  1623. ** `M-x spook' adds a line of randomly chosen keywords to an outgoing
  1624. mail message.  The keywords are chosen from a list of words that
  1625. suggest you are discussing something subversive.
  1626.  
  1627. The idea is that the NSA reads all messages that contain keywords
  1628. suggesting they might be interested, and that adding these lines could
  1629. help to overload them.  I would guess that they have modified their
  1630. program by now to ignore these lines of keywords; perhaps the program
  1631. can be updated if some clever hacker can determine what criterion they
  1632. actually use now.
  1633.  
  1634. * Installation changes
  1635.  
  1636. ** The configure script has been provided to help with the
  1637. installation process.  It takes the place of editing the Makefiles and
  1638. src/config.h, and can often guess the appropriate operating system to
  1639. use for a particular machine type.  See INSTALL for a more detailed
  1640. description of the steps required for installation.
  1641.  
  1642. ** If you create a Lisp file named `site-start.el', Emacs loads the file
  1643. whenever it starts up.
  1644.  
  1645. ** A new Lisp variable, `data-directory', indicates the directory
  1646. containing the DOC file, tutorial, copying agreement, and other
  1647. familiar `etc' files.  The value of `data-directory' is a simple string.
  1648. The default should be set at build time, and the person installing
  1649. Emacs should place all the data files in this directory.  The `help.el'
  1650. functions that look for docstrings and information files check this
  1651. variable.  All Emacs Lisp packages should also be coded so that they
  1652. refer to `data-directory' to find data files.
  1653.  
  1654. ** The PURESIZE definition has been moved from config.h to its own
  1655. file, puresize.h.  Since almost every file of C source in the
  1656. distribution depends on config.h, but only alloc.c and data.c depend
  1657. on puresize.h, this means that changing the value of PURESIZE causes
  1658. only those two files to be recompiled.
  1659.  
  1660. ** The makefile at the top of the Emacs source tree now supports a
  1661. `dist' target, which creates a compressed tar file suitable for
  1662. distribution, using the contents of the source tree.  Object files,
  1663. old file versions, executables, DOC files, and other
  1664. architecture-specific or easy-to-recreate files are not included in
  1665. the tar file.
  1666.  
  1667. For older news, see the file ONEWS.
  1668. For Lisp changes in Emacs 19, see the file news.texi.
  1669.  
  1670. ----------------------------------------------------------------------
  1671. Copyright information:
  1672.  
  1673. Copyright (C) 1993 Free Software Foundation, Inc.
  1674.  
  1675.    Permission is granted to anyone to make or distribute verbatim copies
  1676.    of this document as received, in any medium, provided that the
  1677.    copyright notice and this permission notice are preserved,
  1678.    thus giving the recipient permission to redistribute in turn.
  1679.  
  1680.    Permission is granted to distribute modified versions
  1681.    of this document, or of portions of it,
  1682.    under the above conditions, provided also that they
  1683.    carry prominent notices stating who last changed them.
  1684.  
  1685. Local variables:
  1686. mode: text
  1687. end:
  1688.